home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib43
/
mntlib
/
raise.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-06
|
166b
|
14 lines
/* I think ANSI wants this. It's useful, at any rate.
-- ERS
*/
#include <unistd.h>
#include <signal.h>
int
raise(sig)
int sig;
{
return kill(getpid(), sig);
}